home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / bin / xclip-pastefile < prev    next >
Encoding:
Text File  |  2009-09-30  |  133 b   |  8 lines

  1. #!/bin/sh
  2. set -e
  3. if [ "x$1" != "x" ]; then
  4.     echo "Usage: $0" >&2
  5.     exit 1
  6. fi
  7. xclip -selection secondary -o | gunzip -c | tar xv
  8.